home *** CD-ROM | disk | FTP | other *** search
- ; Command file to encode portable TeX files into Atari TeX files
- ;
- ; encodes "a -> ä etc.
- ;
- ; since the double quote cannot be directly entered into a string,
- ; we must do a trick with &cat here.
- ;
- ; call it with: M-x execute-file texin.cmd
- ;
- ; -cs
- ;
- add-mode "exact"
- delete-mode "magic"
- ;
- beginning-of-file
- replace-string &cat &chr 34 "a" "ä"
- beginning-of-file
- replace-string &cat &chr 34 "o" "ö"
- beginning-of-file
- replace-string &cat &chr 34 "u" "ü"
- beginning-of-file
- replace-string &cat &chr 34 "A" "Ä"
- beginning-of-file
- replace-string &cat &chr 34 "O" "Ö"
- beginning-of-file
- replace-string &cat &chr 34 "U" "Ü"
- beginning-of-file
- replace-string &cat &chr 34 "s" "ß"
- beginning-of-file
- replace-string "\S{}" "§"
- beginning-of-file
- ;
- ; -eof-
-